home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / src / isatty.c < prev    next >
C/C++ Source or Header  |  1996-10-09  |  235b  |  15 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. extern int ioctl(int fd, int request, void *data);
  5.  
  6. int isatty(int fd)
  7. {
  8.     int istty;
  9.  
  10.     __chkabort();
  11.     if (ioctl(fd, _AMIGA_INTERACTIVE, &istty) != 0)
  12.     return 0;
  13.     return istty;
  14. }
  15.